home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / trial < prev    next >
Text File  |  2009-08-26  |  720b  |  25 lines

  1. #! /usr/bin/python
  2.  
  3. # Twisted, the Framework of Your Internet
  4. # Copyright (c) 2001-2004 Twisted Matrix Laboratories.
  5. # See LICENSE for details.
  6.  
  7.  
  8.  
  9. ### Twisted Preamble
  10. # This makes sure that users don't have to set up their environment
  11. # specially in order to run these programs from bin/.
  12. import sys, os, string
  13. if string.find(os.path.abspath(sys.argv[0]), os.sep+'Twisted') != -1:
  14.     sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir)))
  15. if hasattr(os, "getuid") and os.getuid() != 0:
  16.     sys.path.insert(0, os.curdir)
  17. ### end of preamble
  18.  
  19. # begin chdir armor
  20. sys.path[:] = map(os.path.abspath, sys.path)
  21. # end chdir armor
  22.  
  23. from twisted.scripts.trial import run
  24. run()
  25.